 /* Create Menu Columns Done*/ 
.mcolumn {
  float: left;
  width: 25%;
    padding: 1px;
    border: 1px solid white;
  }
 
 /* Create 2nd Menu Column Done*/ 
.mcolumnm {
  float: left;
  width: 50%;
    padding: 1px;
    border: 1px solid white;
  }
 /* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 1px;
    border: 1px solid white;
}

/* Create a middle columns that floats next to each other */
.columnm {
  float: left;
  width: 50%;
  padding: 1px 27px;
    border: 1px solid white;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}